Autogenerated HTML docs for v2.1.2-484-g13da0
diff --git a/git-imap-send.html b/git-imap-send.html index 075efe3..c706046 100644 --- a/git-imap-send.html +++ b/git-imap-send.html
@@ -3,7 +3,7 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /> -<meta name="generator" content="AsciiDoc 8.6.6" /> +<meta name="generator" content="AsciiDoc 8.6.9" /> <title>git-imap-send(1)</title> <style type="text/css"> /* Shared CSS for AsciiDoc xhtml11 and html5 backends */ @@ -87,10 +87,16 @@ ul > li { color: #aaa; } ul > li > * { color: black; } -pre { +.monospaced, code, pre { + font-family: "Courier New", Courier, monospace; + font-size: inherit; + color: navy; padding: 0; margin: 0; } +pre { + white-space: pre-wrap; +} #author { color: #527bbd; @@ -219,7 +225,7 @@ } div.imageblock div.content { padding-left: 0; } -span.image img { border-style: none; } +span.image img { border-style: none; vertical-align: text-bottom; } a.image:visited { color: white; } dl { @@ -349,7 +355,7 @@ margin-bottom: 0.1em; } -div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 { +div.toclevel0, div.toclevel1, div.toclevel2, div.toclevel3, div.toclevel4 { margin-top: 0; margin-bottom: 0; } @@ -407,18 +413,14 @@ span.overline { text-decoration: overline; } span.line-through { text-decoration: line-through; } +div.unbreakable { page-break-inside: avoid; } + /* * xhtml11 specific * * */ -tt { - font-family: monospace; - font-size: inherit; - color: navy; -} - div.tableblock { margin-top: 1.0em; margin-bottom: 1.5em; @@ -452,12 +454,6 @@ * * */ -.monospaced { - font-family: monospace; - font-size: inherit; - color: navy; -} - table.tableblock { margin-top: 1.0em; margin-bottom: 1.5em; @@ -537,6 +533,8 @@ @media print { body.manpage div#toc { display: none; } } + + </style> <script type="text/javascript"> /*<+'])'); + var re = new RegExp('[hH]([1-'+(toclevels+1)+'])'); // Function that scans the DOM tree for header elements (the DOM2 // nodeIterator API would be a better technique but not supported by all // browsers). @@ -610,7 +608,7 @@ var i; for (i = 0; i < toc.childNodes.length; i++) { var entry = toc.childNodes[i]; - if (entry.nodeName == 'div' + if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") && entry.getAttribute("class").match(/^toclevel/)) tocEntriesToRemove.push(entry); @@ -656,7 +654,7 @@ var entriesToRemove = []; for (i = 0; i < noteholder.childNodes.length; i++) { var entry = noteholder.childNodes[i]; - if (entry.nodeName == 'div' && entry.getAttribute("class") == "footnote") + if (entry.nodeName.toLowerCase() == 'div' && entry.getAttribute("class") == "footnote") entriesToRemove.push(entry); } for (i = 0; i < entriesToRemove.length; i++) { @@ -801,8 +799,8 @@ </dt> <dd> <p> - A URL identifying the server. Use a <tt>imap://</tt> prefix for non-secure - connections and a <tt>imaps://</tt> prefix for secure connections. + A URL identifying the server. Use a <code>imap://</code> prefix for non-secure + connections and a <code>imaps://</code> prefix for secure connections. Ignored when imap.tunnel is set, but required otherwise. </p> </dd> @@ -838,7 +836,7 @@ <dd> <p> A boolean to enable/disable verification of the server certificate - used by the SSL/TLS connection. Default is <tt>true</tt>. Ignored when + used by the SSL/TLS connection. Default is <code>true</code>. Ignored when imap.tunnel is set. </p> </dd> @@ -851,7 +849,7 @@ a patch. An html encoded patch will be bracketed with <pre> and have a content type of text/html. Ironically, enabling this option causes Thunderbird to send the patch as a plain/text, - format=fixed email. Default is <tt>false</tt>. + format=fixed email. Default is <code>false</code>. </p> </dd> <dt class="hdlist1"> @@ -871,29 +869,29 @@ <div class="paragraph"><p>Using tunnel mode:</p></div> <div class="literalblock"> <div class="content"> -<pre><tt>[imap] +<pre><code>[imap] folder = "INBOX.Drafts" - tunnel = "ssh -q -C user@example.com /usr/bin/imapd ./Maildir 2> /dev/null"</tt></pre> + tunnel = "ssh -q -C user@example.com /usr/bin/imapd ./Maildir 2> /dev/null"</code></pre> </div></div> <div class="paragraph"><p>Using direct mode:</p></div> <div class="literalblock"> <div class="content"> -<pre><tt>[imap] +<pre><code>[imap] folder = "INBOX.Drafts" host = imap://imap.example.com user = bob - pass = p4ssw0rd</tt></pre> + pass = p4ssw0rd</code></pre> </div></div> <div class="paragraph"><p>Using direct mode with SSL:</p></div> <div class="literalblock"> <div class="content"> -<pre><tt>[imap] +<pre><code>[imap] folder = "INBOX.Drafts" host = imaps://imap.example.com user = bob pass = p4ssw0rd port = 123 - sslverify = false</tt></pre> + sslverify = false</code></pre> </div></div> </div> </div> @@ -905,19 +903,19 @@ to specify your account settings:</p></div> <div class="listingblock"> <div class="content"> -<pre><tt>[imap] +<pre><code>[imap] folder = "[Gmail]/Drafts" host = imaps://imap.gmail.com user = user@gmail.com port = 993 - sslverify = false</tt></pre> + sslverify = false</code></pre> </div></div> <div class="paragraph"><p>You might need to instead use: folder = "[Google Mail]/Drafts" if you get an error that the "Folder doesn’t exist".</p></div> <div class="paragraph"><p>Once the commits are ready to be sent, run the following command:</p></div> <div class="literalblock"> <div class="content"> -<pre><tt>$ git format-patch --cover-letter -M --stdout origin/master | git imap-send</tt></pre> +<pre><code>$ git format-patch --cover-letter -M --stdout origin/master | git imap-send</code></pre> </div></div> <div class="paragraph"><p>Just make sure to disable line wrapping in the email client (GMail’s web interface will wrap lines no matter what, so you need to use a real @@ -954,7 +952,7 @@ <div id="footnotes"><hr /></div> <div id="footer"> <div id="footer-text"> -Last updated 2014-09-09 14:15:21 PDT +Last updated 2014-10-20 14:13:43 PDT </div> </div> </body>